projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bca3689
)
(defgroup winner): Handle Emacs 19 compatibility so that definition
author
Markus Rost
<rost@math.uni-bielefeld.de>
Mon, 11 Nov 2002 15:04:23 +0000
(15:04 +0000)
committer
Markus Rost
<rost@math.uni-bielefeld.de>
Mon, 11 Nov 2002 15:04:23 +0000
(15:04 +0000)
starts at beginning of line.
lisp/winner.el
patch
|
blob
|
history
diff --git
a/lisp/winner.el
b/lisp/winner.el
index 56fbf4bc47ebd936b52dc831473aa64fb52b64e4..68c1df9f2b5bc458a81c522154e253ea0f119537 100644
(file)
--- a/
lisp/winner.el
+++ b/
lisp/winner.el
@@
-70,10
+70,12
@@
(require 'ring)
-(when (fboundp 'defgroup)
- (defgroup winner nil
- "Restoring window configurations."
- :group 'windows))
+(unless (fboundp 'defgroup)
+ (defmacro defgroup (&rest rest)))
+
+(defgroup winner nil
+ "Restoring window configurations."
+ :group 'windows)
(unless (fboundp 'defcustom)
(defmacro defcustom (symbol &optional initvalue docs &rest rest)